home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / kh_gdi.zip / GD_DMWND.H < prev    next >
C/C++ Source or Header  |  1996-05-08  |  1KB  |  48 lines

  1. #if !defined(__gd_dmwnd_h)              // Sentry, use file only if it's not already included.
  2. #define __gd_dmwnd_h
  3.  
  4. /*  Project gdi_demo
  5.     
  6.     Copyright ⌐ 1995. All Rights Reserved.
  7.  
  8.     SUBSYSTEM:    gdi_demo.exe Application
  9.     FILE:         gd_dmwnd.h
  10.     AUTHOR:       S.Vartanov
  11.  
  12.  
  13.     OVERVIEW
  14.     ========
  15.     Class definition for gdi_demoWindow (TWindow).      
  16. */
  17.  
  18.  
  19. #include <owl\owlpch.h>
  20. #pragma hdrstop
  21.  
  22.  
  23. #include "gd_dmapp.rh"            // Definition of all resources.
  24.  
  25.  
  26. //{{TWindow = gdi_demoWindow}}
  27. class gdi_demoWindow : public TWindow
  28.      {
  29.      public:
  30.           gdi_demoWindow (TWindow* parent, const char far* title = 0,
  31.                 TModule* module = 0);
  32.           virtual ~gdi_demoWindow ();
  33.  
  34. //{{gdi_demoWindowVIRTUAL_BEGIN}}
  35. public:
  36.      virtual void Paint (TDC& dc, bool erase, TRect& rect);
  37. //{{gdi_demoWindowVIRTUAL_END}}
  38.  
  39. //{{gdi_demoWindowRSP_TBL_BEGIN}}
  40. protected:
  41.     void khGDIDemo ();
  42. //{{gdi_demoWindowRSP_TBL_END}}
  43. DECLARE_RESPONSE_TABLE(gdi_demoWindow);
  44. };    //{{gdi_demoWindow}}
  45.  
  46.  
  47. #endif                                      // __gd_dmwnd_h sentry.
  48.